home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 December / PCWorld_2007-12_cd.bin / domacnost a kancelar / autoit / autoit-v3-setup.exe / Examples / Helpfile / include.au3 < prev    next >
Text File  |  2007-09-08  |  303b  |  12 lines

  1. ;;; TIME.AU3 ;;;
  2. MsgBox(0,"", "The time is " & @HOUR & ":" & @MIN & ":" & @SEC)
  3.  
  4. ;;; SCRIPT.AU3 ;;;
  5. #include "TIME.AU3"
  6. MsgBox(0,"", "Example")
  7. #include "TIME.AU3"
  8. Exit
  9.  
  10. ; Running script.au3 will output three message boxes:
  11. ; one with the time, one with 'Example', and another with the time.
  12.